home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / GL / ideas / b.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  3KB  |  129 lines

  1. /*
  2.  * Copyright 1992, 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17. #include <gl.h>
  18.  
  19.  
  20.  
  21. float b_data[][2] = {
  22.     {1.437827, 15.482255},
  23.     {3.711599, 15.716075},
  24.     {2.658307, 15.315240},
  25.     {3.477534, 15.081420},
  26.     {2.741902, 14.997912},
  27.     {2.006270, 7.983298},
  28.     {0.234065, 3.139875},
  29.     {1.103448, 4.192067},
  30.     {1.538140, 3.139875},
  31.     {1.404389, 3.958246},
  32.     {2.374086, 3.306889},
  33.     {2.792058, 3.807933},
  34.     {3.243469, 3.691023},
  35.     {3.544410, 4.158664},
  36.     {4.497388, 4.776618},
  37.     {3.979101, 4.759916},
  38.     {4.815047, 5.227557},
  39.     {4.413793, 5.979123},
  40.     {5.400209, 6.864301},
  41.     {4.497388, 8.133612},
  42.     {5.667712, 8.734864},
  43.     {4.263323, 9.002088},
  44.     {5.416928, 9.686848},
  45.     {4.012539, 9.219207},
  46.     {4.898642, 10.020877},
  47.     {3.494253, 9.118998},
  48.     {3.745037, 9.620042},
  49.     {2.775340, 8.684760},
  50.     {2.708464, 8.835073},
  51.     {1.805643, 7.382046},
  52.     {1.688610, 7.582463},
  53.  
  54. };
  55.  
  56. draw_b() {
  57.  
  58.     bgntmesh();
  59.     v2f(b_data[0]);
  60.     v2f(b_data[1]);
  61.     v2f(b_data[2]);
  62.     v2f(b_data[3]);
  63.     v2f(b_data[4]);
  64.     v2f(b_data[5]);
  65.     v2f(b_data[6]);
  66.     v2f(b_data[7]);
  67.     v2f(b_data[8]);
  68.     v2f(b_data[9]);
  69.     v2f(b_data[10]);
  70.     v2f(b_data[11]);
  71.     v2f(b_data[12]);
  72.     v2f(b_data[13]);
  73.     v2f(b_data[14]);
  74.     v2f(b_data[15]);
  75.     v2f(b_data[16]);
  76.     v2f(b_data[17]);
  77.     v2f(b_data[18]);
  78.     v2f(b_data[19]);
  79.     v2f(b_data[20]);
  80.     v2f(b_data[21]);
  81.     v2f(b_data[22]);
  82.     v2f(b_data[23]);
  83.     v2f(b_data[24]);
  84.     v2f(b_data[25]);
  85.     v2f(b_data[26]);
  86.     v2f(b_data[27]);
  87.     v2f(b_data[28]);
  88.     v2f(b_data[29]);
  89.     v2f(b_data[30]);
  90.     endtmesh();
  91.  
  92.     bgnline();
  93.     v2f(b_data[0]);
  94.     v2f(b_data[2]);
  95.     v2f(b_data[4]);
  96.     v2f(b_data[6]);
  97.     v2f(b_data[8]);
  98.     v2f(b_data[10]);
  99.     v2f(b_data[12]);
  100.     v2f(b_data[14]);
  101.     v2f(b_data[16]);
  102.     v2f(b_data[18]);
  103.     v2f(b_data[20]);
  104.     v2f(b_data[22]);
  105.     v2f(b_data[24]);
  106.     v2f(b_data[26]);
  107.     v2f(b_data[28]);
  108.     v2f(b_data[30]);
  109.     v2f(b_data[29]);
  110.     v2f(b_data[27]);
  111.     v2f(b_data[25]);
  112.     v2f(b_data[23]);
  113.     v2f(b_data[21]);
  114.     v2f(b_data[19]);
  115.     v2f(b_data[17]);
  116.     v2f(b_data[15]);
  117.     v2f(b_data[13]);
  118.     v2f(b_data[11]);
  119.     v2f(b_data[9]);
  120.     v2f(b_data[7]);
  121.     v2f(b_data[5]);
  122.     v2f(b_data[3]);
  123.     v2f(b_data[1]);
  124.     v2f(b_data[0]);
  125.     endline();
  126.  
  127. }
  128.  
  129.